@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* resets */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #1d69a3;
    --padding-inline-section: 20px;
}
body{
    font-family: 'Poppins',sans-serif;
    color: var(--primary-text-color);
}
h1{
    font-size: 3rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.5rem;
}
p{
    font-family: 'Roboto',sans-serif;
    color: var(--primary-text-color);
    line-height: 1.8rem;
    font-size: 1.25rem;
}
a{
    text-decoration: none;
    display: inline-block;
}
ul{
    list-style: none;
}
.flex{
    display: flex;
    align-items: center;
}
.container{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    
}

/* Nav bar */
.main-nav{
    background-color: #ffff;
    position:fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
}
.company-logo img{
    width:100px;
    margin-top: 10px;
    margin-bottom: 10px ;
}
.nav-links{
    flex-basis: 730px;
    font-size: 1.5rem;
}
.nav-links ul{
    justify-content: end;
    gap: 40px;
}
.hover-links{
    color: rgb(11, 125, 28);
    transition: 0.2s ease-out;
}
.hover-links:hover{
    color: rgb(130, 184, 48);
}
.nav-toggle{
    display: none;
}

/* banner section */
.banner-image{
    margin-top: 130px;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.content{
    
    margin: 100px;
    padding: 50px;
    background-color: #fcfcde ;
    border-radius: 30px;
    border: 2px solid black;
}
.content h1{
    text-align: center;
    padding-bottom: 30px;
    color: black;
}
.content p{
    color: black;
    padding: 10px;
    font-weight: 500;
}

/* Footer section */
.footer-section-main{
    background-color: #d4faa2;
    background-size: cover;
    max-width: 100%;
}
.footer-section{
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    justify-content: space-between;
}
.footer-right{
    flex-direction: column;
    gap: px;
    position: abs;
}
.footer-right h1{
    color: #275600;
    
}
.icon{
    gap: 20px;
    color: rgb(50, 72, 0);
    margin-bottom: 5px; 
    
}
.icon h4{
    color: rgb(50, 72, 0);
    font-weight: 500;
}
/* subfooter section */

.subfooter-section{
    background-color: rgb(6, 50, 6);
    color: white;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}
.subfooter-left{
    left: 50px;
}
.subfooter-right{

    right: 50px;
    gap: 30px;
}
